home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / ViewKit_dev.idb / usr / share / src / ViewKit / Utilities / RadioGroup / RadioGroupTest.h.z / RadioGroupTest.h
Encoding:
C/C++ Source or Header  |  1996-09-20  |  1.9 KB  |  53 lines

  1. ////////////////////////////////////////////////////////////////////////////////
  2. ///////   Copyright 1992, Silicon Graphics, Inc.  All Rights Reserved.   ///////
  3. //                                                                            //
  4. // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;     //
  5. // the contents of this file may not be disclosed to third parties, copied    //
  6. // or duplicated in any form, in whole or in part, without the prior written  //
  7. // permission of Silicon Graphics, Inc.                                       //
  8. //                                                                            //
  9. // RESTRICTED RIGHTS LEGEND:                                                  //
  10. // Use,duplication or disclosure by the Government is subject to restrictions //
  11. // as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data     //
  12. // and Computer Software clause at DFARS 252.227-7013, and/or in similar or   //
  13. // successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -    //
  14. // rights reserved under the Copyright Laws of the United States.             //
  15. //                                                                            //
  16. ////////////////////////////////////////////////////////////////////////////////
  17. //////////////////////////////////////////////////////////////
  18. // Header file for RadioGroupTest
  19. //////////////////////////////////////////////////////////////
  20.  
  21. #ifndef _RADIOGROUPTEST_H
  22. #define _RADIOGROUPTEST_H
  23.  
  24. #include <Vk/VkComponent.h>
  25.  
  26. class VkRadioGroup;
  27.  
  28. class RadioGroupTest : public VkComponent
  29.   protected: 
  30.  
  31.     VkRadioGroup *_rg1, *_rg2;
  32.  
  33.     // Widgets created by this class
  34.  
  35.     Widget  _a1;
  36.     Widget  _a2;
  37.     Widget  _a3;
  38.     Widget  _b1;
  39.     Widget  _b2;
  40.     Widget  _b3;
  41.     Widget  _bulletinBoard;
  42.     Widget  _text;
  43.  
  44.   public:
  45.  
  46.     RadioGroupTest(const char *, Widget);
  47.     ~RadioGroupTest();
  48.     const char* className();
  49. };
  50. #endif
  51.  
  52.